home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / gpen32k / source / lib / osrc / ombout.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  163 b   |  13 lines

  1.  
  2. #include    <MOS.H>
  3.  
  4. void mbout( int *mb, int *mx, int *my )
  5. {
  6.     int mb2;
  7.     mb2 = *mb;
  8.     do    {
  9.         *mb = mb2;
  10.         MOS_rdpos( &mb2, mx, my );
  11.     }    while ( mb2 );
  12. }
  13.